home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / apt-xapian-index.postinst < prev    next >
Text File  |  2009-07-14  |  565b  |  23 lines

  1. #!/bin/sh -e
  2.  
  3. case "$1" in
  4.     configure)
  5.     # Just checking the main directory with -d should prevent the indexing
  6.     # to be started while an indexing is already going on, as the first
  7.     # thing that update-apt-xapian-index does is to create the directory if
  8.     # it is missing
  9.         if [ ! -d /var/lib/apt-xapian-index ] 
  10.     then
  11.         if [ ! -x /usr/sbin/policy-rc.d ] || /usr/sbin/policy-rc.d apt-xapian-index start
  12.         then
  13.             echo "apt-xapian-index: Building new index in background..."
  14.             nice /usr/sbin/update-apt-xapian-index --quiet &
  15.         fi
  16.     fi
  17.         ;;
  18. esac
  19.  
  20.  
  21.  
  22. exit 0
  23.